From 58295d50273cb4d017b7b5bf754b4930ad45e5c5 Mon Sep 17 00:00:00 2001 From: Steven Hand Date: Thu, 14 Dec 2006 20:58:27 +0000 Subject: [PATCH] Fix exception handling in xend start-of-day. Signed-off-by: Steven Hand --- tools/python/xen/xend/XendStorageRepository.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/python/xen/xend/XendStorageRepository.py b/tools/python/xen/xend/XendStorageRepository.py index 0aaa4c6725..9a3663a9a5 100644 --- a/tools/python/xen/xend/XendStorageRepository.py +++ b/tools/python/xen/xend/XendStorageRepository.py @@ -93,7 +93,7 @@ class XendStorageRepository: open(uuid_file, 'w').write(new_uuid + '\n') return new_uuid except IOError: - log.exception() + log.exception("Failed to determine SR UUID") return uuid.createString() @@ -232,7 +232,7 @@ class XendStorageRepository: if cfg_path and os.path.exists(cfg_path): os.unlink(cfg_path) except OSError: - log.exception() + log.exception("Failed to destroy image") del self.images[image_uuid] return True finally: -- 2.30.2